added Feb 2001 SDK
[windows-sources.git] / shared source / sscli20 / tools / binplace / makefile
blob479a5967697c169db77d175a2cad770c1aabebec
1 # /*++
2 #
3 # Copyright (c) 2006 Microsoft Corporation. All rights reserved.
4 #
5 # The use and distribution terms for this software are contained in the file
6 # named license.txt, which can be found in the root of this distribution.
7 # By using this software in any fashion, you are agreeing to be bound by the
8 # terms of this license.
9 #
10 # You must not remove this notice, or any other, from this software.
13 # Module Name : makefile
15 # This file is NOT generated
17 # --*/
19 SHELL = /bin/bash
21 # It's very easy here -> just redirect all the targets to the obj subdirectories
23 all: check_env
24 cd obj${BUILD_ALT_DIR}/${_BUILDARCH} && \
25 ${MAKE} all
27 clean: check_env
28 cd obj${BUILD_ALT_DIR}/${_BUILDARCH} && \
29 ${MAKE} clean
31 depend: check_env
32 cd obj${BUILD_ALT_DIR}/${_BUILDARCH} && \
33 ${MAKE} depend
35 check_env:
36 if test X"${_NTTREE}" = "X"; \
37 then \
38 echo "ERROR: Set environment before running this."; \
39 exit 1; \